home *** CD-ROM | disk | FTP | other *** search
/ Light ROM 1 / LIGHT-ROM 1 (Amiga Library Services)(1994).iso / ffdisks / d890.lha / OnTheBall / test.rexx < prev   
OS/2 REXX Batch file  |  1993-07-16  |  341b  |  20 lines

  1. /* ARexx script to test mouse program */
  2.  
  3. address 'ontheball'
  4. options results
  5. options prompt 'ontheball>'
  6.  
  7. do forever
  8.  
  9.     parse pull command    /* get a command from the user */
  10.  
  11.     drop rc                    /* clear out previous return code */
  12.  
  13.     drop result                /* clear out previous result */
  14.  
  15.     interpret command        /* execute the command */
  16.  
  17.     say rc result
  18.  
  19. end
  20.